﻿* {
    font-family: Calibri;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #F7F8FC;
}

.image-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 350px; /* Ajusta el tamaño según tus necesidades */
}

h2 {
    text-align:center;
    margin-bottom:20px;
    color:#333333;
    font-size:20px;
}

.login-box {
    background-color: #F7F8FC;
    border: 3px solid #3E84AB;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 450px;
    text-align: center;
}

.textbox {
    margin-bottom: 15px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    height:35px;
    font-size: 15px;
}

.btn {
    width: 100%;
    background-color: #68B6EF;
    border: none;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #3E84AB;
    cursor:pointer;
}